home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / util / misc / dial.lha / Dial / source / GUI.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-22  |  1.5 KB  |  76 lines

  1. #ifndef GUI_FILE_H
  2. #define GUI_FILE_H
  3.  
  4. /* Types */
  5. #include <exec/types.h>
  6. #include "_cat.h"
  7.  
  8. struct ObjApp
  9. {
  10.         APTR    App;
  11.         APTR    window;
  12.         APTR    muiaboutwin;
  13.         APTR    aboutwin;
  14.         APTR    GR_grp_0;
  15.         APTR    LV_main;
  16.         APTR    BT_Dial;
  17.         APTR    LV_set;
  18.         APTR    STR_Name;
  19.         APTR    STR_Number;
  20.         APTR    BT_Add;
  21.         APTR    BT_Remove;
  22.         APTR    BT_Sort;
  23.         APTR    BT_Load;
  24.         APTR    BT_Save;
  25.         APTR    SL_Length;
  26.         APTR    SL_Pause;
  27.         APTR    SL_Wait;
  28.         APTR    CH_system;
  29.         APTR    STR_system;
  30.         APTR    STR_DialCode;
  31.         APTR    PA_pbname;
  32.         APTR    STR_PA_pbname;
  33.         APTR    BT_PrefSave;
  34.         char *  STR_GR_grp_0[4];
  35.  
  36.         APTR    A_LV_Text;
  37.         APTR    A_BT_OK;
  38.         APTR    A_image;
  39.  
  40.         APTR    CH_Conceal;
  41.         APTR    SL_AudioLR;
  42. };
  43.  
  44.  
  45. extern struct ObjApp * CreateApp(int StartIconified);
  46. extern void DisposeApp(struct ObjApp *);
  47.  
  48. #define ID_Dial 1
  49. #define ID_Add 2
  50. #define ID_Name 3
  51. #define ID_Number 4
  52. #define ID_ListClick 5
  53. #define ID_SavePB 7
  54. #define ID_LoadPB 8
  55. #define ID_DialPage 9
  56. #define ID_PBchanged 10
  57. #define ID_ABOUT_CLOSE 11
  58. #define ID_ABOUT_IMAGECLICK 12
  59. #define ID_SETDEFAULT 13
  60.  
  61. #define MEN_PROJECT  100
  62. #define MEN_LOAD     101
  63. #define MEN_SAVE     102
  64. #define MEN_ABOUT    103
  65. #define MEN_ABOUTMUI 104
  66. #define MEN_QUIT     105
  67. #define MEN_SET      106
  68. #define MEN_SETTINGS 107
  69. #define MEN_MUISET   108
  70. #define MEN_LOADSET  109
  71. #define MEN_SAVESET  110
  72. #define MEN_SETDEFAULT  111
  73.  
  74.  
  75. #endif
  76.